        body {
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            background-color: #000;
            font-family: 'Roboto Condensed', sans-serif;
            overflow-x: hidden;
            max-width:600px;
        }
        .container {
            width: 90%;
            text-align: center;
            margin: 10px 0;
        }
        .header-button {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 20px 0;
        }
        .animated-button1 {
            display: inline-block;
            position: relative;
            width: 90%;
            padding: 20px 0;
            color: #fff;
            text-decoration: none;
            text-transform: uppercase;
            transition: .5s;
            background: linear-gradient(90deg, #ff0000, #ff9a00);
            border: none;
            cursor: pointer;
            font-size: 24px;
            font-weight: bold;
            border-radius: 12px;
            box-shadow: 0 0 20px rgba(255, 0, 0, 0.5), 0 0 40px rgba(255, 154, 0, 0.5);
            animation: glow 1s infinite alternate;
        }
        .animated-button1:hover {
            box-shadow: 0 0 30px rgba(255, 0, 0, 0.8), 0 0 60px rgba(255, 154, 0, 0.8);
            transform: scale(1.05);
        }
        @keyframes glow {
            from {
                box-shadow: 0 0 20px rgba(255, 0, 0, 0.5), 0 0 40px rgba(255, 154, 0, 0.5);
            }
            to {
                box-shadow: 0 0 30px rgba(255, 0, 0, 0.8), 0 0 60px rgba(255, 154, 0, 0.8);
            }
        }
        .loading {
            pointer-events: none;
            opacity: 0.6;
        }
        .countdown {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 40px;
            color: #fff;
            display: none;
            font-weight: bold;
            animation: countdown-blink 1s infinite;
        }
        @keyframes countdown-blink {
            from {
                opacity: 1;
            }
            to {
                opacity: 0;
            }
        }
        .spinner {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
        }
        .spinner div {
            width: 100%;
            height: 100%;
            position: absolute;
            border: 8px solid #fff;
            border-top-color: transparent;
            border-radius: 50%;
            animation: spin 1.2s linear infinite;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .pulse-ring {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 150px;
            height: 150px;
            background: rgba(255, 0, 0, 0.5);
            border-radius: 50%;
            animation: pulse-ring 2s infinite;
        }
        @keyframes pulse-ring {
            0% {
                transform: translate(-50%, -50%) scale(0.5);
                opacity: 1;
            }
            100% {
                transform: translate(-50%, -50%) scale(1.5);
                opacity: 0;
            }
        }
        .button-text-container {
            position: relative;
        }
        .countdown {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        .marquee-text, .marquee-text div {
            display: block;
            height: 30px;
            line-height: 30px;
            overflow: hidden;
        }
        .marquee-text {
            position: relative;
            background-color: #0000007e;
        }
        .marquee-text:after, .marquee-text:before {
            content: "";
            position: absolute;
            height: 100%;
            background-color: var(--subbg-color);
            top: 0;
            z-index: 2;
        }
        .marquee-text:before {
            left: 0;
        }
        .marquee-text:after {
            right: 0;
        }
        .marquee-text div {
            width: 200%;
            position: absolute;
            font-size: 16px;
            color: #ffffff; 
            z-index: 1;
            animation: marquee 15s linear infinite;
        }
        .marquee-text span {
            float: left;
            width: 50%;
        }
        .marquee-text:hover div {
            animation-play-state: paused;
        }
        @keyframes marquee {
            0% {
                left: 180%;
            }
            100% {
                left: -180%;
            }
        }
        .header-logo img {
            width: 200px;
        }
        .bubbles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            padding: 0;
            z-index: -1;
        }
        .bubbles li {
            position: absolute;
            list-style: none;
            width: 20px;
            height: 20px;
            border-radius: 30%;
            bottom: -150px;
            background: rgba(117, 0, 0, 0.856);
            animation: animate 25s infinite linear;
        }
        .bubbles li:nth-child(1) {
            left: 25%;
            width: 80px;
            height: 80px;
            animation-delay: 0;
        }
        .bubbles li:nth-child(2) {
            left: 10%;
            width: 20px;
            height: 20px;
            animation-delay: 2s;
            animation-duration: 12s;
        }
        .bubbles li:nth-child(3) {
            left: 70%;
            width: 20px;
            height: 20px;
            animation-delay: 4s;
        }
        .bubbles li:nth-child(4) {
            left: 40%;
            width: 60px;
            height: 60px;
            animation-delay: 0s;
            animation-duration: 18s;
        }
        .bubbles li:nth-child(5) {
            left: 65%;
            width: 20px;
            height: 20px;
            animation-delay: 0s;
        }
        .bubbles li:nth-child(6) {
            left: 75%;
            width: 110px;
            height: 110px;
            animation-delay: 3s;
        }
        .bubbles li:nth-child(7) {
            left: 35%;
            width: 150px;
            height: 150px;
            animation-delay: 7s;
        }
        .bubbles li:nth-child(8) {
            left: 50%;
            width: 25px;
            height: 25px;
            animation-delay: 15s;
            animation-duration: 45s;
        }
        .bubbles li:nth-child(9) {
            left: 20%;
            width: 15px;
            height: 15px;
            animation-delay: 2s;
            animation-duration: 35s;
        }
        .bubbles li:nth-child(10) {
            left: 85%;
            width: 150px;
            height: 150px;
            animation-delay: 0s;
            animation-duration: 11s;
        }
        @keyframes animate {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 1;
                border-radius: 30%;
            }
            100% {
                transform: translateY(-1000px) rotate(720deg);
                opacity: 0;
                border-radius: 50%;
            }
        }
        footer {
            padding: 20px 10px 30px;
            border-radius: 8px 8px 0 0;
        }
        .footdesc {
            opacity: 0.5;
            border-bottom: 1px solid var(--border-color);
            margin: 10px 0;
        }
        .copyright {
            background: rgba(255, 255, 255, 0.2);
            padding: 6px;
            border-radius: 8px;
            opacity: 0.5;
        }
        .footer_menu {
            background: linear-gradient(to bottom, #292929 0, #111 100%);
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            padding: 10px 0;
            position: fixed;
            bottom: 0;
            width: 100%;
            border-top: 2px solid var(--border-color);
        }
        .footer_menu a {
            display: block;
            font-size: 12px;
            color: #fff;
            text-decoration: none;
        }
        .footer_menu a span {
            display: block;
            margin-top: 5px;
        }
        .home-button {
            margin: 20px 0;
        }
        .banner img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 0 8px 4px #e91c238f;
            transform: scale(1);
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% {
                transform: scale(0.98);
                box-shadow: 0 0 8px 4px #e91c2338;
            }
            70% {
                transform: scale(1);
                box-shadow: 0 0 8px 4px #e91c23e3;
            }
            100% {
                transform: scale(0.98);
                box-shadow: 0 0 8px 4px #e91c2338;
            }
        }
        .game {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            padding: 10px;
        }
        .list_game {
            position: relative;
            overflow: hidden;
            padding: 2px;
            border-radius: 10px;
            width: 100%;
            box-shadow: 0 0 8px 4px #e91c238f;
            transform: scale(1);
            animation: pulse2 2s infinite;
        }
        @keyframes pulse2 {
            0% {
                transform: scale(1);
                box-shadow: 0 0 8px 4px #e91c2338;
            }
            70% {
                transform: scale(1);
                box-shadow: 0 0 8px 4px #e91c23e3;
            }
            100% {
                transform: scale(1);
                box-shadow: 0 0 8px 4px #e91c2338;
            }
        }
        @media (max-width: 768px) {
            .header-button {
                flex-direction: column;
                align-items: center;
            }
            .animated-button1 {
                width: 100%;
                font-size: 20px;
            }
            .game {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        .default-table tbody td {
            text-align: left;
        }
        .footdesc {
            border-top: 1px solid var(--border-color);
        }
        .footer_menu {
            z-index: 999;
        }
        .animated-button1,
        .content h1,
        .footer_menu,
        footer {
            text-align: center;
        }
        .main_content h1,
        .main_content h2,
        .main_content h3,
        .main_content table th {
            color: #e91c24;
            text-align: center;
        }
        :root {
            --bg-color: #060606;
            --subbg-color: #222222;
            --border-color: #474747;
            --marquee-color: #dd3333;
            --ta-bg: linear-gradient(to bottom, #292929 0%, #111111 100%);
            --shadow: 3px 3px 3px #000000, -3px -3px 3px rgba(255, 255, 255, 0.09);
            --footer-bg: #222222;
            --footer-border: #474747;
        }
        body {
            font-family: "Roboto Condensed", sans-serif;
            background-image: url(../images/about/petir_merah.gif);
            background-color: var(--bg-color);
            background-size: contain;
            background-position: top center;
            color: #fff;
        }
        .mt55 {
            margin-top: 70px;
        }
        .mb10,
        .poweredlog {
            margin-bottom: 10px;
        }

        .marquee-text,
        .marquee-text div {
            display: block;
            height: 30px;
            line-height: 30px;
            overflow: hidden;
        }
        .judul_game {
            text-align: center;
            color: #fff;
            margin-top: 20px;
        }
        .nama_judul_game {
            margin-top: 9px;
            font-weight: 700;
            font-size: 20px;
        }
        











@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 10px #ffcc00, 0 0 20px #ffcc00, 0 0 30px #ffcc00, 0 0 40px #ffcc00, 0 0 50px #ffcc00;
    }
    50% {
        text-shadow: 0 0 20px #ffcc00, 0 0 30px #ffcc00, 0 0 40px #ffcc00, 0 0 50px #ffcc00, 0 0 60px #ffcc00;
    }
}

@keyframes sparkle {
    from {opacity: 0;}
    to {opacity: 1;}
}

.quote {
    text-align: center;
    font-size: 1.5em;
    font-style: italic;
    font-family: 'Roboto Condensed', sans-serif;
    color: #ffcc00;
    margin-bottom: 30px;
    padding: 10px 20px;
    display: inline-block;
    animation: glow 2s infinite alternate;
    position: relative;
}

.quote .sparkles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    width: 5px;
    height: 5px;
    background: #ffcc00;
    border-radius: 50%;
    opacity: 0;
    animation: sparkle 1s infinite alternate;
}

.sparkle:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.sparkle:nth-child(2) {
    top: 30%;
    left: 50%;
    animation-delay: 0.4s;
}

.sparkle:nth-child(3) {
    top: 50%;
    left: 80%;
    animation-delay: 0.8s;
}

.sparkle:nth-child(4) {
    top: 70%;
    left: 40%;
    animation-delay: 1s;
}

.sparkle:nth-child(5) {
    top: 90%;
    left: 60%;
    animation-delay: 1.1s;
}

.judul_game {
    text-align: center;
    color: #fff;
    margin-top: 20px;
}

.nama_judul_game {
    margin-top: 9px;
    font-weight: 700;
    font-size: 20px;
}



@keyframes dreamy {
    0% { transform: scale(1) translateX(0px) translateY(0px); }
    50% { transform: scale(1.05) translateX(10px) translateY(10px); }
    100% { transform: scale(1) translateX(0px) translateY(0px); }
}

.transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #141414;
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.transition-overlay.active {
    display: block;
    opacity: 1;
}


